home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 17
/
CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso
/
CUCD
/
Programming
/
DiceSource
/
lib
/
float
/
spa_cmp.a
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-02-01
|
429 b
|
27 lines
; SPA_CMP.A
;
; D0 arg1 (4 bytes)
; D1 arg2 (4 bytes)
;
; result -> D0
;
; (c)Copyright 1990, Matthew Dillon, All Rights Reserved
section text,code
xref _MathIeeeSingBasBase
xref _LVOIEEESPCmp
xdef __spcmp_a
__spcmp_a move.l A6,-(sp)
move.l _MathIeeeSingBasBase(A4),A6
;;exg D0,D1 ; NO EXCHANGE, REVERSED FROM FFP LIB
jsr _LVOIEEESPCmp(A6)
move.l (sp)+,A6
tst.l D0
rts
END